home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / Construc / Refactor / Source / fExtractLibPath.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-10-09  |  458 b   |  29 lines

  1. unit fExtractLibPath;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   Tf_ExtractLibPath = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.     Label1: TLabel;
  14.     Edit1: TEdit;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   f_ExtractLibPath: Tf_ExtractLibPath;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.